home *** CD-ROM | disk | FTP | other *** search
/ Complete Linux / Complete Linux.iso / docs / apps / database / postgres / postgre3.z / postgre3 / src / lib / H / access / att.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-08-27  |  629 b   |  29 lines

  1. /*
  2.  * att.h --
  3.  *    POSTGRES attribute definitions.
  4.  */
  5.  
  6. #ifndef    AttIncluded        /* Include this file only once */
  7. #define AttIncluded    1
  8.  
  9. /*
  10.  * Identification:
  11.  */
  12. #define ATT_H    "$Header: /private/postgres/src/lib/H/access/RCS/att.h,v 1.10 1991/04/28 09:16:03 cimarron Exp $"
  13.  
  14. #include "tmp/c.h"
  15. #include "access/skey.h"       /* just to reduce levels of #include */
  16. #include "catalog/pg_attribute.h"
  17.  
  18. typedef AttributeTupleForm    Attribute;
  19.  
  20. typedef Attribute        *AttributePtr;
  21.  
  22. /*
  23.  * AttributeIsValid
  24.  *    True iff the attribute is valid.
  25.  */
  26. #define    AttributeIsValid(attribute) PointerIsValid(attribute)
  27.  
  28. #endif    /* !defined(AttIncluded) */
  29.